home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / dev / src / stefanb_src.lha / UMS / Developer / c / dlib / ums / UMSLog.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-24  |  299 b   |  16 lines

  1. /*
  2.  * dlib/ums/UMSLog.c
  3.  *
  4.  * Varargs stub for ums.library/UMSVLog()
  5.  *
  6.  */
  7.  
  8. #include <clib/ums_protos.h>
  9. #include <pragmas/ums_pragmas.h>
  10. extern struct Library *UMSBase;
  11.  
  12. void UMSLog(UMSAccount Account, LONG Level, STRPTR Format, ...)
  13. {
  14.  UMSVLog(Account, Level, Format, ((ULONG *) &Format) + 1);
  15. }
  16.